home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / BPNN133U.ZIP / MAKEFILE.UX < prev    next >
Text File  |  1992-11-19  |  974b  |  37 lines

  1. #
  2. #
  3. #LIB = $(DRIVE)\TC\LIB
  4. #INC = $(DRIVE)\TC\INCLUDE
  5. CCMD = cc -c 
  6. CLMD = cc 
  7. CLMDOPT = -lm -g
  8.  
  9. final:    bprecog.exe bptrain.exe
  10.  
  11. bprecog.exe:    bprecog.c nntrain.o nncreat.o nnerror.o nndump.o cparser.o bprecogv.h random.o
  12.     $(CLMD) bprecog.c nntrain.o nncreat.o nnerror.o nndump.o cparser.o random.o $(CLMDOPT) -o bprecog
  13.  
  14. bptrain.exe:    bptrain.c nntrain.o nncreat.o nnerror.o nndump.o cparser.o bptrainv.h random.o timer.o
  15.     $(CLMD) bptrain.c nntrain.o nncreat.o nnerror.o nndump.o cparser.o random.o timer.o $(CLMDOPT) -o bptrain
  16.  
  17. nntrain.o:      nntrain.c nntype.h nntrain.h nnmath.h nndump.h
  18.     $(CCMD) nntrain.c
  19.  
  20. nncreat.o:    nncreat.c nntype.h nnerror.h nncreat.h random.h
  21.     $(CCMD) nncreat.c
  22.  
  23. nnerror.o:    nnerror.c nnerror.h
  24.     $(CCMD) nnerror.c
  25.  
  26. nndump.o:    nndump.c nntype.h nndump.h
  27.     $(CCMD) nndump.c
  28.  
  29. cparser.o:    cparser.c cparser.h
  30.     $(CCMD) cparser.c
  31.  
  32. random.o:    random.c random.h
  33.     $(CCMD) random.c
  34.  
  35. timer.o:    timer.c timer.h
  36.     $(CCMD) timer.c
  37.